home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 60265 / 60265.xpi / chrome / content / pwdmgrOverlay.xul < prev    next >
Extensible Markup Language  |  2010-02-11  |  2KB  |  40 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.     Saved Password Editor, extension for Firefox 3.0+
  4.     Copyright (C) 2010  Daniel Dawson <ddawson@icehouse.net>
  5.  
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation, either version 3 of the License, or
  9.     (at your option) any later version.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18. -->
  19.  
  20. <!DOCTYPE overlay SYSTEM "chrome://savedpasswordeditor/locale/spe.dtd">
  21.  
  22. <overlay id="savedpasswordeditorOverlay"
  23.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  24.   <stringbundleset>
  25.     <stringbundle id="savedpwdedit-stringbundle"
  26.                   src="chrome://savedpasswordeditor/locale/spe.properties"/>
  27.   </stringbundleset>
  28.   <script type="text/javascript"
  29.           src="chrome://savedpasswordeditor/content/pwdmgrOverlay.js"/>
  30.   <hbox id="SignonViewerButtons">
  31.     <button id="newSignon" icon="add" label="&newentry.label;"
  32.             accesskey="&newentry.accesskey;" oncommand="spEditor.newSignon();"
  33.             insertafter="removeAllSignons"/>
  34.     <button id="editSignon" icon="properties" label="&editentry.label;"
  35.             accesskey="&editentry.accesskey;"
  36.             oncommand="spEditor.editSignon();" disabled="true"
  37.             insertafter="removeAllSignons"/>
  38.   </hbox>
  39. </overlay>
  40.